/* banner */
.home-banner{
  background: url(../img/home/bg_banner.png) no-repeat;
  background-size: cover;
  background-position: center;
  height: 409px;
  margin-bottom: 31px;
}
.home-banner .ban-lf{
  padding-left: 8.333vw;
  margin-top: 48px;
}
.home-banner .ban-lf p{
  line-height: 46px;
  font-size: 1.4583vw;
}
.home-banner .ban-lf p strong{
  text-decoration: underline;
  font-size: 1.979vw;
}
.home-banner .ban-mid{
  flex: 1;
  height: 100%;
}
.home-banner h1{
  width: 32.291vw;
  margin: 112px auto 0;
}
.home-banner h1 img{
  width: 100%;
}
.home-banner .ban-rg{
  padding-right: 9.375vw;
  margin-top: 201px;
}
.home-banner .ban-rg p{
  position: relative;
  text-align: center;
  margin-bottom: 6px;
}
.home-banner .ban-rg p::after,
.home-banner .ban-rg p::before{
  content: "";
  width: 68px;
  height: 5px;
  background-color: #12A3BF;
  position: absolute;
  bottom: 30px;
}
.home-banner .ban-rg p::after{
  transform: rotate(-60deg);
  right: 0;
}
.home-banner .ban-rg p::before{
  transform: rotate(60deg);
  left: 0;
}
.home-banner .ban-rg strong{
  display: block;
  font-size: 1.4583vw;
  line-height: 38px;
}
.home-banner .ban-rg span{
  font-size: 1.25vw;
  line-height: 36px;
}
.home-banner .ban-rg a{
  display: inline-block;
  margin: 0 auto;
}
.home-banner .ban-rg button{
  /* width: 218px; */
  height: 4.2708vw;
  font-size: 1.4583vw;
  color: #fff;
  background: linear-gradient(45deg, #00C9E0 0%, #12A3BF 70%, #12A3BF 100%);
  padding-left: 13px;
  padding-right: 45px;
  font-family: 'Hiragino Kaku Gothic Pro';
  min-width: fit-content;
}
.home-banner .ban-rg button span:first-of-type{
  display: inline-block;
  width: 3.3333vw;
  height: 3.3333vw;
  line-height: 3.3333vw;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  font-size: 1.25vw;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .home-banner{
    background: url(../img/home/bg_banner_sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 270px;
    margin-bottom: 13px;
  }
  .home-banner .ban-lf{
    padding-left: 8px;
    margin-top: 0;
    padding-top: 16px;
  }
  .home-banner .ban-lf p{
    line-height: 32px;
    font-size: 14px;
  }
  .home-banner .ban-lf p strong{
    font-size: 16px;
  }
  .home-banner h1{
    width: 239px;
    height: 58px;
    margin: 16px auto 23px;
  }
  .home-banner .ban-rg{
    padding-right: 0;
    margin-top: 0;
    text-align: center;
  }
  .home-banner .ban-rg p{
    margin-bottom: 6px;
    width: fit-content;
    margin: 0 auto 4px;
  }
  .home-banner .ban-rg p::after,
  .home-banner .ban-rg p::before{
    width: 38px;
    height: 3px;
    bottom: 16px;
  }
  .home-banner .ban-rg p::after{
    right: -38px;
  }
  .home-banner .ban-rg p::before{
    left: -38px;
  }
  .home-banner .ban-rg strong{
    font-size: 14px;
    line-height: 17px;
  }
  .home-banner .ban-rg span{
    font-size: 13px;
    line-height: 17px;
  }
  .home-banner .ban-rg button{
    width: 162px;
    height: 42px;
    font-size: 14px;
    padding: 0;
    border-radius: 8px;
  }
  .home-banner .ban-rg button span:first-of-type{
    width: 32.6px;
    height: 32.6px;
    line-height: 32.6px;
    font-size: 10px;
    margin-right: 8px;
  }
}

/* news */
#page-news {
  padding: 20px 0 90px;
  width: 100%;
}

.news-child {
  border-bottom: 1px solid #8588A1;
}

.news-child a {
  padding: 29px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.news-child a:hover h2{
  text-decoration: underline;
}

strong.news-time {
  font-size: 16px;
  color: #12A3BF;
  flex-shrink: 0;
}

.news-child h3 {
  font-size: 16px;
  font-weight: normal;
  margin-left: 13px;
  line-height: 21px;
  flex: 1;
  color: #454545;
  overflow: hidden;
}

.news-child h3 span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-text {
  margin: 24px 0 64px 50px;
  line-height: 21px;
}

.news-link {
  text-align: center;
}

.news-link a {
  display: inline-block;
  border: 1px solid #12A3BF;
  color: #12A3BF;
  font-size: 14px;
  padding: 4px 11px;
  border-radius: 4px;
}

.news-link a:hover {
  background: #C1E4E8;
}

@media screen and (max-width: 768px) {
  .page-title {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 13px;
  }
  /* news */
  #page-news {
    padding: 0 8px 20px;
  }
  .news-child a {
    padding: 13px 0;
    align-items: baseline;
  }
  strong.news-time {
    font-size: 14px;
    line-height: 19px;
  }
  .news-child h3{
    margin-left: 0;
    margin: 0 0 0 16px;
    font-size: 14px;
  }
  .news-text {
    margin: 24px 0 60px 0;
  }
}

/* コラム */
main .home-user .product-search .user-main{
  width: calc(100% - 25.16% - 1.33%);
}
main .product-search .user-slide.home-featured{
  width: 100%;
}
main .product-search .user-slide.home-featured .slide-list .pic{
  width: 113px;
  height: 83px;
}
main .product-search .user-slide.home-featured .slide-list .pic a{
  display: inline-block;
  width: 100%;
  height: 100%;
}
main .product-search .user-slide.home-featured .slide-list .pic img{
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
main .product-search .user-slide.home-featured .slide-list .category{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
main .product-search .user-slide.home-featured .slide-list .category strong{
  min-width: 44px;
  height: 22px;
  line-height: 22px;
  background-color: #FFF2CE;
  border-radius: 11px;
  font-size: 14px;
  padding: 0 8px;
  margin-right: 12px;
  flex-shrink: 0;
}
main .home-user .product-search .user-main .product-list{
  margin-bottom: 60px;
}
main .home-user h1.font-bold,
main .home-user h2.font-bold{
  color: #12A3BF;
}
main .home-user .arealist{
  margin: 0 auto 63px;
}
main .home-user .product-search .user-main .search {
  padding: 28px 18px 10px;
}
main .home-user .product-search .user-main .freeWord{
  margin-right: 19px;
}
main .home-user .search-popular{
  background-color: #EFF7F8;
  padding: 0 18px 20px;
}
main .home-user .search-popular p{
  margin-bottom: 9px;
}
main .home-user .search-popular a{
  display: inline-block;
  background-color: #fff;
  border: 1px solid #12A3BF;
  color: #12A3BF;
  padding: 3px 10px 3px; 
  text-decoration: none;
  margin-right: 24px;
  margin-bottom: 8px;
  border-radius: 2px;
}
.more-link{
  text-align: center;
  margin: 40px auto;
}
.more-link a{
  display: inline-block;
  background-color: #12A3BF;
  width: 168px;
  height: 58px;
  line-height: 58px;
  border: 1px solid #12A3BF;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
}
.more-link a:hover{
  background-color: #CAE7EA;
  color: #12A3BF;
}
main .home-user .product-search .user-slide.rg{
  margin-top: 59px;
  flex-shrink: 0;
}
main .home-user .product-search .user-slide-con{
  border: 1px solid #12A3BF;
  background-color: #EFF7F8;
  padding: 0 4px 10px;
}
#footer .footer-inner .right .bottom li.kenother {
  width: 110px;
}
main .home-user .product-search .user-slide.rg .silde-title{
  background-color: #EFF7F8;
  border-bottom: none;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 8px 12px;
}
.assessment-result{
  background-color: #fff;
  padding: 13px 12px;
}
.assessment-result dl{
  font-size: 14px;
  line-height: 24px;
  padding: 0 0 0.875vw;
  border-bottom: 1px solid #12A3BF;
  margin-bottom: 12px;
}
.assessment-result dl:last-of-type{
  border-bottom: none;
}
.assessment-result dt{
  margin-bottom: 4px;
  color: #12A3BF;
  font-weight: normal;
  text-align: left;
}
.assessment-result dd p{
  color: #454545;
}
@media screen and (max-width:768px) {
  main .home-user .product-search .user-main {
    width: 100%;
  }
  main .page-inner.home-user {
    padding: 0;
  }
  main .home-user .product-search .user-main .search {
    padding: 16px 8px 22px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  main .home-user .product-search .user-main .freeWord{
    margin-right: 0;
    width: calc(100% - 151px);
    margin: 0;
  }
  main .home-user .product-search .user-main .search .select-label{
    width: 151px;
  }
  main .home-user .product-search .user-main .search .con-serach{
    text-align: center;
    margin-top: 16px;
  }
  main .home-user .search-popular{
    background: #fff;
    padding: 6px 10px 32px;
  }
  main .home-user .search-popular p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
  }
  main .home-user .search-popular a{
    margin: 0 6px 6px 0;
  }
  main .home-user .product-search .user-main .product-list {
    margin: 0 8px 60px;
  }
  main .home-user .product-search .user-main .product-list ul li a .pic {
    width: 32px;
    height: 32px;
    margin-right: 0;
    padding: 4px;
  }
  main .home-user .product-search .user-main .product-list ul li a .product-message .title {
    font-size: 14px;
    font-weight: 500;
  }
  main .home-user .product-search .user-main .product-list ul li a {
    padding: 10px 0 9px;
  }
  main .home-user .product-search .user-main .product-list ul {
    grid-template-columns: repeat(2,calc((100% - 12px) / 2));
    -moz-column-gap: 12px;
    column-gap: 12px;
  }main .home-user .product-search .user-main .search button {
    width: 192px;
    font-size: 14px;
    height: 39px;
  }
  main .product-search .user-slide.home-featured {
    width: 100%;
    padding: 0 8px;
  }
  .more-link{
    margin: 24px auto;
  }
  .more-link a{
    background-color: #fff;
    color: #12A3BF;
  }
  .user-slide.home-featured h2,
  .dis-pc+.user-cont h2,
  #page-news h2{
    border: 2px solid #12A3BF;
    height: 42px;
    line-height: 42px;
  }
  main .product-search .user-slide.home-featured .slide-list .pic {
    margin-left: 16px;
  }
  main .home-user .product-search .user-slide.rg{
    margin: 24px 8px 28px;
    width: calc(100% - 16px);
    height: 342px;
    overflow-y: auto;
    border: 1px solid #12A3BF;
  }
  main .home-user .product-search .user-slide.rg .silde-title {
    font-size: 14px;
    padding: 9px 8px 10px;
  }
  .assessment-result{
    padding: 12px;
  }
  .assessment-result dl{
    font-size: 14px;
    line-height: 24px;
    padding: 0 0 1.875vw;
    border-bottom: 1px solid #12A3BF;
    margin-bottom: 12px;
  }
  .assessment-result dl:last-of-type{
    border-bottom: none;
  }
  .assessment-result dt{
    margin-bottom: 4px;
    color: #12A3BF;
    font-weight: normal;
    text-align: left;
  }
  main .product-search #home-select-dropdown{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
  }
  main .product-search #home-select-dropdown .select-dropdown{
    display: block;
    height: 100%;
    top: 0;
  }
  .back-down-sp{
    background: #F3F3F9;
    color: #8588A1;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
  }
  .no-scroll{
    overflow: hidden;
  }
  main .product-search #home-select-dropdown .title{
    height: 55px;
  }
  main .product-search .user-main #home-select-dropdown .select-list{
    height: calc(100% - 55px*2);
    max-height: 360px;
  }

  /* 地域から店舗を探す */
  main .home-user .arealist{
    margin: 0 auto 24px;
  }
  .arealist.home-arealist ul li>div{
    position: relative;
  }
  .arealist.home-arealist ul li .pop {
    position: absolute;
    right: 0;
    display: inline-block;
    border: 2px solid #12a3bf;
    background: #fff;
    padding: 9px 30px 8px;
    text-align: center;
    border-radius: 4px;
    width: 164px;
    top: 0;
    z-index: 8;
    display: none;
  }
  .arealist.home-arealist ul li .pop.one{
    top: 50%;
    transform: translateY(-50%);
    right: -12px;
  }
  .arealist.home-arealist ul li .pop.two{
    right: -64px;
    top: -58px;
  }
  .arealist.home-arealist ul li .pop.three{
    right: -42px;
    top: -57px;
  }
  .arealist.home-arealist ul li .pop.four{
    right: -42px;
    top: -57px;
  }
  .arealist.home-arealist ul li .pop.five{
    right: -66px;
    top: -81px;
  }
  .arealist.home-arealist ul li .pop.six{
    right: -82px;
    top: -81px;
  }
  .arealist.home-arealist ul li .pop.seven{
    right: -82px;
    top: -5px;
  }
  .arealist.home-arealist ul li .pop.eight{
    right: -82px;
    top: -5px;
  }
  .arealist.home-arealist ul li .pop.nine{
    right: -82px;
    top: -5px;
  }
  .arealist.home-arealist ul li .pop.show{
    display: block;
  }
}